home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / cujoct93.zip / 1110108A < prev    next >
Text File  |  1993-08-10  |  115b  |  14 lines

  1. void f(double &r)
  2.     {
  3.     // ...
  4.     r = ...something... ;
  5.     }
  6.  
  7. void g()
  8.     {
  9.     int n;
  10.     // ...
  11.     f(n);
  12.     // ...
  13.     }
  14.